home *** CD-ROM | disk | FTP | other *** search
/ NeXT Enterprise Objects Framework 1.1 / NeXT Enterprise Objects Framework 1.1.iso / NextDeveloper / Headers / eointerface / EOControlAssociation.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-09  |  501 b   |  30 lines

  1. // EOControlAssociation
  2. // Enterprise Objects Framework
  3. //  
  4. // Copyright 1993 NeXT Computer, Inc.
  5. // All Rights Reserved
  6.  
  7. #ifdef SHLIB
  8. #import "shlib.h"
  9. #endif
  10.  
  11. #import "EOAssociation.h"
  12.  
  13. @class Window;
  14.  
  15. @interface EOControlAssociation: EOAssociation
  16. {
  17.     BOOL _didChange;  // has the text changed since the last AsscocDidEdit?
  18. }
  19.  
  20. // Target/action method for destination to send to
  21. - controlActed:sender;
  22. - (Window *)window;
  23.  
  24. @end
  25.  
  26. @interface EOActionCellAssociation : EOControlAssociation
  27. {
  28. }
  29. @end
  30.